-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENH: Standardize and Cache Random Seeds #745
Merged
imikejackson
merged 12 commits into
BlueQuartzSoftware:develop
from
nyoungbq:enh/seed_caching
Oct 24, 2023
Merged
ENH: Standardize and Cache Random Seeds #745
imikejackson
merged 12 commits into
BlueQuartzSoftware:develop
from
nyoungbq:enh/seed_caching
Oct 24, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nyoungbq
requested review from
imikejackson
and removed request for
imikejackson
October 18, 2023 17:17
imikejackson
force-pushed
the
enh/seed_caching
branch
from
October 20, 2023 13:15
85e75fb
to
a293494
Compare
nyoungbq
force-pushed
the
enh/seed_caching
branch
from
October 23, 2023 11:36
a293494
to
7172bd9
Compare
Signed-off-by: Michael Jackson <[email protected]>
imikejackson
approved these changes
Oct 24, 2023
imikejackson
approved these changes
Oct 24, 2023
imikejackson
added a commit
to imikejackson/simplnx
that referenced
this pull request
Oct 20, 2024
…artzSoftware#745) * Feature clustering seed updates * Add Bad Data seed updates * K Filter seed updates * Uncertain grid seed updates * Merge twins seed updates * Reorganize scalar segment features feature ids randomization * Initialize Data Randomness Rework and Seed Updates * Standardize Id Randomization to use a consistent seed * Point Sample Triangle Geometry Seeding Updates Signed-off-by: Michael Jackson <[email protected]> --------- Signed-off-by: Michael Jackson <[email protected]> Co-authored-by: Michael Jackson <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Naming Conventions
Naming of variables should descriptive where needed. Loop Control Variables can use
i
if warranted. Most of these conventions are enforced through the clang-tidy and clang-format configuration files. See the filecomplex/docs/Code_Style_Guide.md
for a more in depth explanation.Filter Checklist
The help file
complex/docs/Porting_Filters.md
has documentation to help you port or write new filters. At the top is a nice checklist of items that should be noted when porting a filter.Unit Testing
The idea of unit testing is to test the filter for proper execution and error handling. How many variations on a unit test each filter needs is entirely dependent on what the filter is doing. Generally, the variations can fall into a few categories:
Code Cleanup